GET v1/store/login/user/activities?activityIDs[0]={activityIDs[0]}&activityIDs[1]={activityIDs[1]}
Provides active tasks of the current user
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| activityIDs | Collection of globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ActivityModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ActivityID |
The unique ID of the activity |
globally unique identifier |
None. |
| Status |
The status of the activity |
ActivityStatus |
None. |
| Type |
Activity type |
ActivityType |
None. |
| Name |
The name of the activity |
string |
None. |
| Total |
The total number of sub-items of the activity |
integer |
None. |
| Progress |
Activity progress |
integer |
None. |
| Output |
The output of the activity |
ActivityOutputModel |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ActivityID": "e3ecde98-0867-4508-b446-388179403b7d",
"Status": 1,
"Type": 1,
"Name": "sample string 2",
"Total": 1,
"Progress": 1,
"Output": null
},
{
"ActivityID": "e3ecde98-0867-4508-b446-388179403b7d",
"Status": 1,
"Type": 1,
"Name": "sample string 2",
"Total": 1,
"Progress": 1,
"Output": null
}
]